home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6984 / 6984.xpi / chrome / lazarus.jar / content / preferences-sanitize-overlay.js < prev    next >
Text File  |  2009-11-24  |  789b  |  25 lines

  1.  
  2. this.Lazarus = this.Lazarus || {};
  3.  
  4. /**
  5. */
  6. Lazarus.init = function(){
  7.     
  8.     //Kludge: move our checkbox beneath the "Save form and search history" checkbox
  9.     //have tried to do this using xul:insertafter attribute, but it fails.
  10.     var lazBox = Lazarus.$('extensions.lazarus.privacy.item.saved.forms.checkbox');
  11.     
  12.     var checkboxes = document.getElementsByTagName("checkbox");
  13.     for (var i=0; i<checkboxes.length; i++){
  14.         var box = checkboxes[i];
  15.         if (box.getAttribute("preference") == "privacy.item.formdata" && box.nextSibling){
  16.             box.parentNode.insertBefore(lazBox, box.nextSibling);
  17.             return;
  18.         }
  19.     }
  20.     
  21.     //if not found, leave at end of list.
  22. }
  23.  
  24. window.addEventListener("load", Lazarus.init, false);